home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / jamapi.zip / JAMUTIL.ZIP / MAKEFILE.BC < prev    next >
Text File  |  1993-07-01  |  806b  |  34 lines

  1. #
  2. #   JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. #
  4. #   JAM Utility
  5. #
  6. #   Written by Mats Wallin
  7. #
  8. #   ----------------------------------------------------------------------
  9. #
  10. #   makefile (JAMmb)
  11. #
  12. #   Make file for the JAMUTIL program and Borland C++ 3.x and Borland MAKE
  13. #   (or MAKER).
  14. #
  15. #   Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  16. #   Mats Wallin. ALL RIGHTS RESERVED.
  17. #
  18. CMDL    = c
  19. CC      = bcc
  20. INCDIR  = c:\h\bc
  21. CFLAGS  = -c -m$(CMDL) -G -Ox -Z -f- -d -w -I$(INCDIR)
  22. LINK    = tlink
  23. LFLAGS  = /m /c
  24. LJAMLIB = jamcapi$(CMDL).lib
  25. LIBDIR  = c:\lib\bc
  26.  
  27. OBJS    = jamutil.obj
  28.  
  29. .c.obj:
  30.     $(CC) $(CFLAGS) {$< }
  31.  
  32. jamutil.exe:   $(OBJS)
  33.     $(LINK) $(LFLAGS) $(LIBDIR)\c0$(CMDL).obj $(OBJS),$*,$*,$(LJAMLIB) $(LIBDIR)\c$(CMDL).lib
  34.